home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / Incognito / cdev / new&del.c < prev   
Encoding:
C/C++ Source or Header  |  1994-02-09  |  174 b   |  13 lines  |  [TEXT/MPS ]

  1. #ifndef __MEMORY__
  2. #include <Memory.h>
  3. #endif
  4.  
  5. void *__nw__FUi(unsigned int size)
  6. {
  7.     return (void *)NewPtrClear(size);
  8. }
  9.  
  10. void __dl__FPv(void *obj)
  11. {
  12.     DisposePtr((Ptr)obj);
  13. }